home *** CD-ROM | disk | FTP | other *** search
- package java.awt;
-
- import sun.awt.DebugHelper;
-
- abstract class AttributeValue {
- private final int value;
- private final String[] names;
- private static final DebugHelper dbg = DebugHelper.create(AttributeValue.class);
-
- protected AttributeValue(int var1, String[] var2) {
- DebugHelper var10000 = dbg;
- this.value = var1;
- this.names = var2;
- }
-
- public int hashCode() {
- return this.value;
- }
-
- public String toString() {
- return this.names[this.value];
- }
- }
-